/* 布局 */

video {
	outline: none;
}
body {
	font-family: Microsoft YaHei;
	/* background-color: #f5f7fa; */
	color: #333;
}
a {
	color: #333;
	transition: .5s;
}
a:hover {
	color: #000;
}
.a a {
	display: block;
}
/* 裁剪 */
.ofh {
	overflow: hidden;
}
/* 左浮动 */
.fl, .col-l {
	float: left;
}
/* 右浮动 */
.fr, .col-r {
	float: right;
}
/* 相对定位 */
.por {
	position: relative;
}
/* 高100% */
.h100full {
	height: 100%;
}
/* 宽100% */
.w100full {
	width: 100%;
}
.allfull {
	width: 100%;
	height: 100%;
}
/* 默认图片 */
img {
	width: 100%;
	vertical-align: middle;
	transition: .5s;
}
/* 清除浮动 */
.htover::after {
	content: '';
	display: table;
	clear: both;
}
/* 文本行数限制 1行 */
.txtof1 {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
/* 文本行数限制 2行 */
.txtof2 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis
}
/* 文本行数限制 3行 */
.txtof2-3 {
	-webkit-line-clamp: 3;
}
/* 文本行数限制 4行 */
.txtof2-4 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	text-overflow: ellipsis
}
/* 文本行数限制 5行 */
.txtof2-5 {
	-webkit-line-clamp: 5;
}
/* 水平居中 */
.mid-w {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}
/* 垂直居中 */
.mid-h {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
/* 水平+垂直居中 */
.mid-all {
	position: relative;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.wp1205 {
	max-width: 1205px;
	margin: 0 auto;
}
.wp1600 {
	max-width: 1600px;
	margin: 0 auto;
}
.wp1400 {
	max-width: 1400px;
	margin: 0 auto;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	transition: .5s;
	background-color: #fff;
	color: #000;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
.header .hdr1 {
	background-color: #262626;
	height: 68px;
}
.header .hdr1 .wp1600, .header .hdr2 .wp1600 {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.header .hdr2 .wp1600 {
	height: 100%;
}
.header .hdr2 {
	background-color: #FABD00;
	height: 68px;
}
.header .nav .con .tit {
	color: #000;
	position: relative;
}
.header.on .btns .lang ul {
	border: 1px solid rgba(0, 0, 0, .15);
}
.header .hdr {
	position: relative;
	/* height:100px; */
	display: flex;
	justify-content: space-between;
	align-items: center;/* padding-top: 25px; */
}
.header .logo {
	float: left;
	/* margin-right: 180px; */
	overflow: hidden;
	width: 133px;
	margin-right: 15px;
}
.header .hdr1 .tel {
	background: url(../images/icon2.png) no-repeat left center;
	background-size: 31px;
	padding-left: 47px;
	font-size: 20px;
	color: #fff;
	margin-right: 40px;
}
.nav {
	display: flex;
	justify-content: space-between;
	height: 100%;
}
.nav .con {
	position: relative;
	width: 195px;
	text-align: center;
	transition: .5s;
	height: 100%;
	display: block;
}
.nav .on .con, .nav .con:hover {
	background-color: #DEA800;
}
.nav .con .tit {
	font-size: 20px;
	position: relative;
	color: #fff;
	display: inline-block;
	line-height: 68px;
}
.nav .on .con .tit::after, .nav .con .tit:hover::after {
	opacity: 1;
}
.nav .on .con .tit {
	position: relative;
}
.g-libbtn:hover {
	background-color: #007ac6;
}
.g-libbtn, .nav {
/* top: 48%; */
}
.subnav {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 100%);
	display: none;
	border: 1px solid rgb(226, 226, 226);
	width: 100%;
	border-bottom-color: transparent;
}
.subnav a {
	display: block;
	padding: 12px 40px;
	font-size: 16px;
	line-height: 2;
	background-color: #fff;
	white-space: nowrap;
	border-bottom: 1px solid rgb(226, 226, 226);
	color: #333;
	transition: .5s;
}
.subnav a:hover {
	background-color: #FABD00;/* color: #fff; */
}
.footer {
	background-color: #333333;
	color: rgba(255, 255, 255, .7);
}
.footer a {
	color: rgba(255, 255, 255, .7);
}
.footer a:hover {
	color: #fff;
}
.footer .logo {
	width: 150px;
}
.footer .ftr1 {
	padding: 58px 0 42px;
}
.footer .wp1600 {
	display: flex;
	justify-content: space-between;
}
.footer .ftrlist {
	display: flex;
	justify-content: space-between;
	text-align: left;
	width: 1240px;
}
.footer .ftrlist li {
	margin-right: 50px;
}
.footer .ftrlist li:last-of-type {
	margin-right: 0;
}
.footer .ftrlist .tit {
	font-size: 16px;
	margin-bottom: 14px;
	color: #E4E4E4;
	display: block;
}
.footer .ftrlist a:hover {
	color: #E4E4E4;
}
.footer .ftrlist dd, .footer .ftrlist a {
	font-size: 16px;
	color: #949494;
}
.footer .ftrlist dd {
	margin-bottom: 14px;
}
.footer .ftrlist dd span {
	font-weight: bold;
}
.footer .ftrlist li:first-of-type dd {
	color: #7e8890;
}
.footer .ftrlist .pic {
	width: 150px;
	height: 150px;
	border-radius: 5px;
	overflow: hidden;
}
.footer .info .pic {
	width: 133px;
	margin: 0 auto 13px;
}
.footer .info .txt {
	font-size: 14px;
	color: #949494;
	margin-bottom: 15px;
}
.footer .info .btn {
	width: 196px;
	height: 38px;
	border-radius: 4px;
	background-color: #FABD00;
	text-align: center;
	line-height: 38px;
	font-size: 16px;
	color: #fff;
	display: block;
}
.footer .ftr2 {
	padding: 20px 0;
	line-height: 2;
	border-top: 1px solid rgba(255, 255, 255, .2);
	font-size: 14px;
	color: #949494;
}
.footer .ftr2 a {
	color: #949494;
}
.footer .ftr2 a:hover {
	color: #E4E4E4;
}
.footer .ftr2 .line {
	margin: 0 1em;
}
.footer .ftr2 .tag {
	margin: 0 29px;
}
.footer .ftr2 .tag:last-of-type {
	margin-right: 0;
}

@media only screen and (min-width: 950px) and (max-width: 1920px) {
.wp1205 {
	max-width: 62.76vw;
	margin: 0 auto;
}
.wp1600 {
	max-width: 83.33vw;
	margin: 0 auto;
}
.wp1400 {
	max-width: 72.91vw;
	margin: 0 auto;
}
.header {
	top: 0;
	left: 0;
	transition: .5s;
	box-shadow: 0 0 0.520vw rgba(0, 0, 0, .2);
}
.header .hdr1 {
	height: 3.541vw;
}
.header .hdr1 .wp1600, .header .hdr2 .wp1600 {
	top: 50%;
	transform: translateY(-50%);
}
.header .hdr2 .wp1600 {
}
.header .hdr2 {
	height: 3.541vw;
}
.header .nav .con .tit {
}
.header.on .btns .lang ul {
	border: 1px solid rgba(0, 0, 0, .15);
}
.header .logo {
	/* margin-right: 9.375vw; */
	width: 6.927vw;
	margin-right: 0.781vw;
}
.header .hdr1 .tel {
	background-size: 1.614vw;
	padding-left: 2.447vw;
	font-size: 1.041vw;
	margin-right: 2.083vw;
}
.nav {
	justify-content: space-between;
}
.nav .con {
	width: 10.15vw;
}
.nav .on .con {
}
.nav .con .tit {
	font-size: 1.041vw;
	line-height: 3.541vw;
}
.nav .on .con .tit::after, .nav .con .tit:hover::after {
	opacity: 1;
}
.subnav {
	bottom: 0;
	transform: translate(-50%, 100%);
	border: 1px solid rgb(226, 226, 226);
}
.subnav a {
	padding: 0.625vw 2.083vw;
	font-size: 0.833vw;
	line-height: 2;
	white-space: nowrap;
	border-bottom: 1px solid rgb(226, 226, 226);
	transition: .5s;
}
.subnav a:hover {
}
.footer {
}
.footer a {
}
.footer a:hover {
}
.footer .logo {
	width: 7.812vw;
}
.footer .ftr1 {
	padding: 3.020vw 0 2.187vw;
}
.footer .wp1600 {
	justify-content: space-between;
}
.footer .ftrlist {
	justify-content: space-between;
	width: 64.58vw;
}
.footer .ftrlist li {
	margin-right: 2.604vw;
}
.footer .ftrlist li:last-of-type {
}
.footer .ftrlist .tit {
	font-size: 0.833vw;
	margin-bottom: 0.729vw;
}
.footer .ftrlist a:hover {
}
.footer .ftrlist dd, .footer .ftrlist a {
	font-size: 0.833vw;
}
.footer .ftrlist dd {
	margin-bottom: 0.729vw;
}
.footer .ftrlist dd span {
	font-weight: bold;
}
.footer .ftrlist li:first-of-type dd {
}
.footer .ftrlist .pic {
	width: 7.812vw;
	height: 7.812vw;
	border-radius: 0.260vw;
}
.footer .info .pic {
	width: 6.927vw;
	margin: 0 auto 0.677vw;
}
.footer .info .txt {
	font-size: 0.729vw;
	margin-bottom: 0.781vw;
}
.footer .info .btn {
	width: 10.20vw;
	height: 1.979vw;
	border-radius: 0.208vw;
	line-height: 1.979vw;
	font-size: 0.833vw;
}
.footer .ftr2 {
	padding: 1vw 0;
	line-height: 2;
	border-top: 1px solid rgba(255, 255, 255, .2);
	font-size: 0.729vw;
}
.footer .ftr2 .line {
	margin: 0 1em;
}
.footer .ftr2 .tag {
	margin: 0 1.510vw;
}
.footer .ftr2 .tag:last-of-type {
}
}
/* 移动端头部 */
.header-phone {
	height: 50px;
	background-color: #333;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}
.header-phone .hdr {
	height: 100%;
	/* overflow: hidden; */
	position: relative;
}
.header-phone .hdr::after {
	content: '';
	display: table;
	clear: both;
}
.header-phone .logo {
	width: 110px;
}
/* 移动端按钮 */
.menuBtn {
	position: absolute;
	right: 0px;
	width: 25px;
	display: block;
	cursor: pointer;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s
}
.menuBtn b {
	display: block;
	content: '';
	width: 100%;
	height: 3px;
	background-color: #fff;
	margin-bottom: 5px;
	transition: .5s;
	transform: rotateZ(0);
	opacity: 1;
	-webkit-transform: rotateZ(0);
	-moz-transform: rotateZ(0);
	-ms-transform: rotateZ(0);
	-o-transform: rotateZ(0);
	opacity: 1;
}
.menuBtn b:last-child {
	margin-bottom: 0;
}
.menuBtn.on b {
	opacity: 0;
}
.menuBtn.on b:first-child {
	opacity: 1;
	transform: translateY(10px) rotateZ(41deg);
	-webkit-transform: translateY(10px) rotateZ(41deg);
	-moz-transform: translateY(10px) rotateZ(41deg);
	-ms-transform: translateY(10px) rotateZ(41deg);
	-o-transform: translateY(10px) rotateZ(41deg);
}
.menuBtn.on b:last-child {
	opacity: 1;
	transform: translateY(-6px) rotateZ(-44deg);
	-webkit-transform: translateY(-6px) rotateZ(-44deg);
	-moz-transform: translateY(-6px) rotateZ(-44deg);
	-ms-transform: translateY(-6px) rotateZ(-44deg);
	-o-transform: translateY(-6px) rotateZ(-44deg);
}
.nav-ph {
	position: fixed;
	left: 0;
	right: 0;
	top: 50px;
	bottom: 0;
	text-align: center;
	background-color: #fff;
	padding-top: 70px;
	display: none;
	overflow-y: auto;
	z-index: 999;
}
.nav-ph li {
	margin-bottom: 20px;
}
.nav-ph .con {
	position: relative;
}
.nav-ph .arr {
	position: absolute;
	right: 20%;
	top: 0;
	background: url(../images/arr.png) no-repeat center;
	background-size: 100%;
	width: 13px;
	height: 30px;
	transition: .5s;
}
.nav-ph .arr.on {
	background-image: url(../images/arr-on.png);
	transform: rotateZ(90deg);
}
.nav-ph a {
	font-size: 17px;
}
.nav-ph .con > a {
	height: 30px;
	line-height: 30px;
}
.sub-navph {
	padding: 15px 0;
	display: none;
}
.sub-navph a {
	font-size: 15px;
}
.sub-navph dd {
	margin-bottom: 10px;
}
.header-phone {
	display: none;
}

@media only screen and (max-width: 1300px) {
.header .logos {
	margin-right: 1rem;
}
}

@media only screen and (max-width: 950px) {
.header {
	display: none;
}
.header-phone {
	display: block;
}
.wp1760, .wp1600, .wp, .wp1530 {
	max-width: none;
	padding: 0 20px;
}
.header-all .btns {
	position: absolute;
	top: 15px;
	right: 40px;
	transform: none;
	width: auto;
	height: auto;
	line-height: 1.5;
}
.header-all .header-phone .btns .search {
	width: 15px;
	height: 15px;
	background-image: url(../images/index/icon1-2.png);
	background-size: 100%;
	margin-top: 2px;
}
.footer {
	text-align: center;
}
.footer .wp1600 {
	justify-content: center;
}
.footer .ftr1 {
	padding: 30px 0 0;
}
.footer .ftr2 .wp1600 {
	display: block;
}
.footer .ftrlist .pic {
	margin: 0 auto;
}
.footer .ftrlist .pic {
	width: 150px;
	height: 150px;
	margin-top: 20px;
}
.footer .ftrlist {
	display: none;
}
.footer {
	padding-top: 0.4rem;
}
.footer .logo {
	width: 3rem;
	margin: 0 auto;
}
.footer .ftr1 .wp1400 {
	justify-content: center;
	padding-bottom: 0.4rem;
}
.footer .ftr2 {
	border: none;
	line-height: 1.5;
}
.footer .ftr2 .txts a {
	display: block;
}
.footer .ftr2 .tag {
	margin: 0 12px;
}
}
/* 新增 */
.wp1405 {
	max-width: 1405px;
	margin: 0 auto;
}
.header-all .rt {
	display: flex;
	align-items: center;
}
.header-all .search {
	position: relative;
	cursor: pointer;
}
.g-hdsearch {
	position: relative;
	/* right:-20px;
    width: 230px;
    transform: translate(100%,8px); */
	height: 46px;
	line-height: 46px;
	background-color: #fff;
	/* border: 1px solid #ddd; */

	border-radius: 23px;
	overflow: hidden;
}
.g-hdsearch .ipt {
	width: 310px;
}
.g-hdsearch .ipt input {
	width: 100%;
	border: none;
	outline: none;
	box-sizing: border-box;
	padding: 0 50px 0 18px;
	height: 46px;
	display: block;
	font-size: 16px;
}
.g-hdsearch .btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	background: url(../images/icon1-2.png) no-repeat center;
	background-size: 19px;
	background-color: #DADBDB;
	width: 20px;
	height: 20px;
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

@media only screen and (min-width: 950px) and (max-width: 1920px) {
.g-hdsearch {
	/* right:-1.041vw;
        width: 11.97vw;
        transform: translate(100%,0.416vw); */
	height: 2.395vw;
	line-height: 2.395vw;
	/* border: 1px solid #ddd; */
	border-radius: 1.197vw;
}
.g-hdsearch .ipt {
	width: 16.14vw;
}
.g-hdsearch .ipt input {
	border: none;
	outline: none;
	box-sizing: border-box;
	padding: 0 2.604vw 0 0.937vw;
	height: 2.395vw;
	font-size: 0.833vw;
}
.g-hdsearch .btn {
	top: 50%;
	transform: translateY(-50%);
	right: 0.520vw;
	background-size: 0.989vw;
	width: 1.041vw;
	height: 1.041vw;
	width: 2.083vw;
	height: 2.083vw;
	border-radius: 50%;
}
}

@media only screen and (max-width: 950px) {
.g-hdsearch {
	top: 2px;
	right: 0;
	width: 200px;
	height: 30px;
	line-height: 30px;
}
.g-hdsearch .ipt {
	height: 30px;
	width: 180px;
}
.g-hdsearch .ipt input {
	padding: 0 10px;
	height: 30px;
}
.g-hdsearch .btn {
	width: 15px;
	height: 15px;
	background-size: 100%;
	right: 5px;
}
}
/*page*/
.page {
	text-align: center;
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.page li {
	list-style-type: none;
}
.page li a {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	padding: 0 18px;
	background: #ffffff;
	color: #0b2b4d;
	font-size: 14px;
	margin-bottom: 5px;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
}
.page li a:hover, .page li.current a {
	background: #007ac6;
	color: #ffffff;
}
.syy{font-size:14px;margin-top:30px;}
.syy1{font-size:14px;margin-top:10px;}
.syy1 a{font-size:14px;}